← Index
NYTProf Performance Profile   
For /usr/share/koha/opac/cgi-bin/opac/opac-search.pl
  Run on Tue Oct 15 17:10:45 2013
Reported on Tue Oct 15 17:12:56 2013

Filename(eval 1133)[/usr/share/perl/5.10/CGI.pm:869]
StatementsExecuted 14 statements in 42µs
Eval Invoked At/usr/share/perl/5.10/CGI.pm line 869
Sibling evals1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
22256µs242µsCGI::::protocolCGI::protocol
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1
# spent 242µs (56+186) within CGI::protocol which was called 2 times, avg 121µs/call: # once (41µs+173µs) by CGI::url at line 832 of CGI.pm # once (15µs+13µs) by CGI::url at line 23 of (eval 1127)[CGI.pm:869]
package CGI; sub protocol {
225µs local($^W)=0;
321µs my $self = shift;
426µs227µs return 'https' if uc($self->https()) eq 'ON';
# spent 27µs making 2 calls to CGI::https, avg 14µs/call
5210µs278µs return 'https' if $self->server_port == 443;
# spent 76µs making 1 call to CGI::AUTOLOAD # spent 2µs making 1 call to CGI::server_port
628µs276µs my $prot = $self->server_protocol;
# spent 74µs making 1 call to CGI::AUTOLOAD # spent 2µs making 1 call to CGI::server_protocol
724µs my($protocol,$version) = split('/',$prot);
829µs return "\L$protocol\E";
9}
10
11;